home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / arexx / easyrexx.lha / EasyREXX / test.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-02-10  |  547 b   |  41 lines

  1. /*
  2.  *    File:                    test.rexx
  3.  *    Description:    Small AREXX file that uses all commands known to
  4.  *                                the test program
  5.  *
  6.  *    (C) 1994,1995, Ketil Hunn
  7.  *
  8.  */
  9.  
  10. options results
  11.  
  12. address EASYREXX_TEST
  13.  
  14. clear
  15. open project "ram:foo digg"
  16. open text "ram:foo"
  17. open "ram:foo"            /* defaults to OPEN PROJECT */
  18. saveas NAME "ram:foo"
  19.  
  20. help amigaguide "arexx"
  21. help "arexx"
  22.  
  23. smiley=":-)"
  24. text "Hello World!" smiley
  25. row 54
  26.  
  27. Name
  28. say "Name:" Result
  29.  
  30. Version
  31. say "Version:" Result
  32.  
  33.  
  34. /* pause in case we started the script from WB */
  35.  
  36. do i=1 to 4000
  37.  nop
  38. end
  39.  
  40. quit
  41.